From b837c0108339a1cb487f43ee98545af062eb0085 Mon Sep 17 00:00:00 2001 From: Peter Michael Green Date: Sat, 5 Feb 2022 14:30:32 +0000 Subject: [PATCH] Further raspbian hacks to rust target selection. Gbp-Pq: Name further-raspbian-hacks-to-rust-target-se.patch --- build/moz.configure/rust.configure | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build/moz.configure/rust.configure b/build/moz.configure/rust.configure index 93c3cf9873..f38c732134 100644 --- a/build/moz.configure/rust.configure +++ b/build/moz.configure/rust.configure @@ -406,6 +406,9 @@ def detect_rustc_target( if rustc_target is None: die("Don't know how to translate {} for rustc".format(host_or_target.alias)) + #raspbian hack + if rustc_target == "armv7-unknown-linux-gnueabihf": + rustc_target = "arm-unknown-linux-gnueabihf" return rustc_target -- 2.30.2